* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0e27;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.speed-test-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.go-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%; /* Ensure full width availability */
    max-width: 1200px; /* Limit max width */
}

.reklam-banner-area {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 428px;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    overflow: hidden;
}

.reklam-banner-area.active {
    display: flex;
}

.reklam-banner-area img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 2px 12px rgba(79, 195, 247, 0.3);
}

.reklam-banner-area-right {
    display: none;
    position: fixed;
    right: 11px;
    top: 80px;
    bottom: 19px;
    width: 390px;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    overflow: hidden;
}

.reklam-banner-area-right.active {
    display: flex;
}

.reklam-banner-area-right img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
    object-position: top;
    box-shadow: 0 2px 12px rgba(79, 195, 247, 0.3);
}

.go-button-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #4fc3f7 0%, #26c6da 50%, #00acc1 100%);
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.4), 
                0 0 60px rgba(38, 198, 218, 0.3);
    transition: all 0.3s ease;
}

.go-button-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(79, 195, 247, 0.6), 
                0 0 80px rgba(38, 198, 218, 0.5);
}

.go-button-wrapper:active {
    transform: scale(0.98);
}

.go-button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #0a0e27;
    border: none;
    color: white;
    font-size: 72px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 4px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.go-button:focus {
    outline: none;
}

.speed-results-panel {
    background-color: transparent; /* Remove background to blend in */
    border-radius: 12px;
    padding: 0 30px; /* Reduced padding */
    width: 100%;
    max-width: 800px; /* Match progress bar min-width */
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.speed-result-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.speed-result-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 10px; /* Add separation */
}

.speed-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.speed-item.ping {
    align-items: center;
    gap: 8px;
}

.speed-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.speed-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.speed-icon-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.download-icon {
    background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
}

.upload-icon {
    background: linear-gradient(135deg, #00e676 0%, #69f0ae 100%);
}

.ping-icon {
    background-color: transparent;
    object-fit: contain;
}

.speed-icon-small.ping-icon {
    width: 28px;
    height: 28px;
}

.speed-icon.ping-icon {
    width: 36px;
    height: 36px;
}

.speed-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.speed-label {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.speed-label-inline {
    color: white;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
}

.speed-placeholder {
    color: white;
    font-size: 24px;
    font-weight: bold;
    min-width: 80px;
    text-align: left;
}

.speed-placeholder-small {
    width: 30px;
    height: 2px;
    background-color: #b0bec5;
    border-radius: 1px;
}

.speed-value-small {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 58px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #00e5ff;
    transition: all 0.2s ease;
    box-shadow: none;
}

.language-button:hover {
    box-shadow: none;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.globe-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.language-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    overflow: hidden;
    display: none;
    z-index: 1001;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 12px;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option.active {
    background-color: #e3f2fd;
}

.lang-code {
    font-weight: 600;
    color: #333;
    min-width: 30px;
    font-size: 14px;
}

.lang-name {
    flex: 1;
    color: #333;
    font-size: 14px;
}

.check-icon {
    color: #2196F3;
    font-weight: bold;
    font-size: 16px;
    min-width: 20px;
    text-align: right;
}

.language-option:not(.active) .check-icon {
    display: none;
}

.progress-bar-container {
    display: grid;
    grid-template-columns: minmax(96px, auto) minmax(0, 1fr) minmax(96px, auto);
    column-gap: 12px;
    row-gap: 0;
    align-items: center;
    width: 100%;
    min-width: 800px;
    max-width: 1280px;
    padding: 0 56px;
    margin-top: 30px;
    box-sizing: border-box;
}

.progress-icon-left .server-icon-svg,
.progress-icon-right .server-icon-svg {
    margin-bottom: 0;
}

.progress-icon-left {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    max-width: 220px;
    background-color: transparent;
    padding: 0;
    gap: 6px;
}

.progress-icon-right {
    grid-column: 3;
    grid-row: 1 / span 3;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: start;
    max-width: 220px;
    background-color: transparent;
    padding: 0;
    gap: 6px;
}

.server-label {
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.progress-icon-left .server-label,
.progress-icon-right .server-label {
    white-space: normal;
    line-height: 1.25;
    max-width: 14em;
    word-break: break-word;
}

.server-info {
    color: #b0bec5;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.progress-icon-left .server-info,
.progress-icon-right .server-info {
    white-space: normal;
    word-break: break-all;
    line-height: 1.25;
    max-width: 14em;
}

.local-ip-label {
    color: #80cbc4;
    font-size: 12px;
    margin-top: 2px;
    cursor: help;
    letter-spacing: 0.3px;
}

/* ─── En İyi Sunucu Paneli ──────────────────────────────────────────────── */
.best-server-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.best-server-globe {
    transition: filter 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(77, 208, 225, 0.35));
}

.best-server-globe.found {
    filter: drop-shadow(0 0 14px rgba(77, 208, 225, 0.85)) drop-shadow(0 0 4px #00e5ff);
    animation: globePulse 2.5s ease-in-out infinite;
}

/* Sol panel sunucu ikonu — dünya ile aynı yanma / nabız efekti */
.server-icon-svg.client-server-glow {
    transition: filter 0.4s ease;
    filter: drop-shadow(0 0 14px rgba(77, 208, 225, 0.85)) drop-shadow(0 0 4px #00e5ff);
    animation: globePulse 2.5s ease-in-out infinite;
}

.server-icon-svg.client-server-glow:hover {
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.95)) drop-shadow(0 0 6px #00e5ff);
}

@keyframes globePulse {
    0%, 100% { filter: drop-shadow(0 0 14px rgba(77, 208, 225, 0.85)) drop-shadow(0 0 4px #00e5ff); }
    50%       { filter: drop-shadow(0 0 26px rgba(0, 229, 255, 1))     drop-shadow(0 0 8px #00e5ff); }
}

.best-server-dist {
    color: #4dd0e1 !important;
    font-size: 12px !important;
    font-weight: 500;
    margin-top: -2px;
    opacity: 0.85;
}

/* Yükleniyor animasyonu */
.best-server-loading-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    border-radius: 50%;
    background: #4dd0e1;
    animation: dotBounce 1.2s ease-in-out infinite;
}
.best-server-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.best-server-loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%            { transform: scale(1.1); opacity: 1;   }
}

.server-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin-bottom: 4px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.progress-bar-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    align-items: center;
    column-gap: 8px;
    width: 100%;
    min-width: 0;
}

.progress-bar-row .progress-direction-icon {
    justify-self: center;
}

.progress-direction-spacer {
    width: 24px;
    height: 24px;
    visibility: hidden;
    pointer-events: none;
    justify-self: center;
}

.progress-bar-row-download {
    grid-column: 2;
    grid-row: 1;
}

.device-name-label {
    grid-column: 2;
    grid-row: 2;
    text-align: center;
    color: #4dd0e1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 8px rgba(77, 208, 225, 0.4);
    min-height: 18px;
}

.progress-bar-row-upload {
    grid-column: 2;
    grid-row: 3;
}

.progress-direction-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4dd0e1 0%, #00e676 100%);
    border-radius: 5px;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
}

/* Gauge Styles */
.gauge-wrapper {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gauge-ticks {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
}

.tick {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    text-align: center;
    color: #ffffff;
    font-size: 20px; /* Increased font size */
    font-weight: 700;
    /* Position the tick inside the arc (adjusted for 500px size) */
    transform: rotate(var(--angle)) translate(0, -160px) rotate(calc(-1 * var(--angle)));
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

#gaugeCanvas {
    width: 500px; /* Increased from 350px */
    height: 500px;
    z-index: 1;
}

.gauge-center {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-value {
    font-size: 56px; /* Reduced from 72px */
    font-weight: 300;
    color: white;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    font-family: 'Segoe UI Light', 'Roboto Light', sans-serif;
}

.gauge-unit {
    font-size: 16px; /* Reduced from 18px */
    color: #607d8b;
    margin-top: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.unit-icon {
    width: 20px; /* Reduced from 24px */
    height: 20px; /* Reduced from 24px */
    border: 2px solid #26c6da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26c6da;
    font-size: 12px;
    font-weight: bold;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #0a0e27;
    border: 1px solid #1e2540;
    border-radius: 16px;
    padding: 40px;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2001;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4757 0%, #e63946 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2002;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    background: linear-gradient(135deg, #ff6b7a 0%, #ff4757 100%);
    box-shadow: 0 6px 16px rgba(255, 71, 87, 0.6);
}

.modal-logo-wrapper {
    width: 100px;
    height: 100px;
    background-color: #000;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
}

.modal-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.modal-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#loginModal .login-form input {
    text-transform: none !important;
}

.input-group {
    position: relative;
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    z-index: 10;
}

.input-group input {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    color: #0a0e27;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    text-transform: uppercase;
}

.input-group input::placeholder {
    color: #6b7280;
    text-transform: none;
}

.input-group input:focus::placeholder {
    color: transparent;
}

.input-group input[type="email"],
.input-group input[type="password"],
.input-group input[name="sifre"],
.input-group input#password {
    text-transform: none !important;
}

.input-group input:focus {
    border-color: #2196F3;
}

.register-btn,
.register-submit-btn,
.register-link-btn {
    width: 100%;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.register-btn:hover,
.register-submit-btn:hover,
.register-link-btn:hover {
    background-color: #218838;
}

.login-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-submit-btn:hover {
    background-color: #0056b3;
}

/* Logo Login Icon Style (Minimalist User Icon) */
.logo-login-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-login-btn:hover {
    /* transform: scale(1.1); Hareket kaldırıldı */
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.logo-login-btn svg path {
    transition: stroke 0.3s ease;
}

.logo-login-btn:hover svg path {
    stroke: #40e0d0; /* Hover rengi biraz daha parlak */
}

/* Server SVG Icon Style (Modern Globe) — client-server-glow kendi filtresini kullanır */
.server-icon-svg {
    width: 50px;
    height: 50px;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 8px rgba(77, 208, 225, 0.4));
    transition: all 0.3s ease;
}

.server-icon-svg:not(.client-server-glow):hover {
    filter: drop-shadow(0 0 12px rgba(77, 208, 225, 0.8));
}

/* ── Mobil Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Reklamları gizle */
    .reklam-banner-area,
    .reklam-banner-area.active,
    .reklam-banner-area-right,
    .reklam-banner-area-right.active {
        display: none !important;
    }

    /* Body: scroll izni ver */
    body {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
        padding: 10px 0 20px;
    }

    .container {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 60px;
    }

    .speed-test-wrapper {
        height: auto;
        align-items: flex-start;
    }

    .go-button-container {
        gap: 20px;
        padding: 0 8px;
    }

    /* Üst menü: dil + giriş */
    .language-selector {
        right: 10px;
        top: 10px;
        gap: 8px;
    }

    .language-button {
        padding: 6px 10px;
        font-size: 13px;
    }

    .logo-login-btn svg {
        width: 30px;
        height: 30px;
    }

    /* Sonuç paneli */
    .speed-results-panel {
        padding: 0 10px;
        gap: 12px;
        margin-bottom: 10px;
    }

    .speed-result-top {
        gap: 16px;
    }

    .speed-label {
        font-size: 11px;
    }

    .speed-placeholder {
        font-size: 18px;
        min-width: 60px;
    }

    .speed-label-inline {
        font-size: 11px;
        margin-right: 4px;
    }

    .speed-value-small {
        font-size: 14px;
    }

    .speed-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .speed-icon.ping-icon {
        width: 28px;
        height: 28px;
    }

    .speed-icon-small.ping-icon {
        width: 22px;
        height: 22px;
    }

    /* GO butonu */
    .go-button-wrapper {
        width: 200px;
        height: 200px;
    }

    .go-button {
        font-size: 48px;
    }

    /* Gauge */
    .gauge-wrapper {
        width: 300px;
        height: 300px;
    }

    #gaugeCanvas {
        width: 300px;
        height: 300px;
    }

    .tick {
        font-size: 14px;
        transform: rotate(var(--angle)) translate(0, -96px) rotate(calc(-1 * var(--angle)));
    }

    .gauge-value {
        font-size: 36px;
    }

    .gauge-unit {
        font-size: 13px;
    }

    .unit-icon {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    /* Progress bar bölümü: grid → dikey stack */
    .progress-bar-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        min-width: unset;
        width: 100%;
        padding: 0 12px;
        margin-top: 16px;
    }

    /* Sol panel (IP bilgisi) — tam genişlik, görünür */
    .progress-icon-left {
        order: 1;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .progress-icon-left .server-icon-svg {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .progress-icon-left .server-label,
    .progress-icon-left .server-info {
        text-align: left;
        white-space: nowrap;
        font-size: 12px;
    }

    /* Download bar */
    .progress-bar-row-download {
        order: 2;
        width: 100%;
    }

    /* Cihaz adı */
    .device-name-label {
        order: 3;
        font-size: 11px;
    }

    /* Upload bar */
    .progress-bar-row-upload {
        order: 4;
        width: 100%;
    }

    /* Sağ panel (sunucu bilgisi) — tam genişlik, görünür */
    .progress-icon-right {
        order: 5;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .progress-icon-right .server-icon-svg {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .progress-icon-right .server-label,
    .progress-icon-right .server-info {
        text-align: left;
        white-space: nowrap;
        font-size: 12px;
    }

    .progress-bar-row {
        grid-template-columns: 24px minmax(0, 1fr) 24px;
    }

    .progress-direction-icon {
        width: 20px;
        height: 20px;
    }

    .progress-direction-spacer {
        width: 20px;
        height: 20px;
    }

    .server-icon-svg {
        width: 36px;
        height: 36px;
    }

    /* Modal: mobilde taşmasın */
    .modal-content {
        width: 90vw;
        padding: 24px 16px;
    }
}
